home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / os2 / nortutil.zip / src / BiffFinn / fin.l < prev    next >
Text File  |  1996-08-28  |  1KB  |  64 lines

  1.  
  2. T    [" .!?,"]*
  3. %%
  4.  
  5. look            printf("watch");
  6. watch            printf("look");
  7. hear            printf("listen");
  8. listen            printf("hear");
  9. good            printf("well");
  10. well            printf("good");
  11. say            printf("speaks");
  12. said            printf("speaked");
  13. being            printf("be");
  14. ck            printf("kk");
  15. nn            printf("n");
  16. mm            printf("m");
  17. tt            printf("t");
  18. ss            printf("s");
  19. dd            printf("d");
  20. " had "            printf(" have ");
  21. " than "        printf(" to ");
  22. " was "            printf(" were ");
  23. " can "            printf(" be able to ");
  24. " do "            printf(" doing ");
  25. " does "        printf(" doings ");
  26. " see "            printf(" be seeing ");
  27. " be "            printf(" being ");
  28. " am "            printf(" do be ");
  29. " as "            printf(" so ");
  30. " so "            printf(" as ");
  31. " is "            printf(" does be ");
  32. " my "            printf(" the of me ");
  33. "My "            printf("The of me ");
  34. " his "            printf(" the of him ");
  35. "His "            printf("The of him ");
  36. [Yy]our            printf("the of you");
  37. " a "            printf(" ");
  38. " the "            printf(" ");
  39. "A "            printf("One ");
  40. "ts "            printf("t's ");
  41. "t's "            printf("ts ");
  42. [Tt]hat            printf("this");
  43. [Tt]his            printf("that");
  44. into            printf("in");
  45. " in "            printf(" into ");
  46. onto            printf("on");
  47. " on "            printf(" onto ");
  48. never            printf("not once");
  49. [Oo]nce            printf("one time");
  50. [Tt]wice        printf("two times");
  51. about            printf("by");
  52. [Ww]hy            printf("how");
  53. " by "            printf(" from ");
  54. " to "            printf(" for ");
  55. " for "            printf(" to ");
  56. "ing "            printf("ed ");
  57. %%
  58.  
  59. main()
  60. {
  61.     srand(getpid());
  62.     yylex();
  63. }
  64.